type runtime.bucket

25 uses

	runtime (current package)
		heapdump.go#L600: func dumpmemprof_callback(b *bucket, nstk uintptr, pstk *uintptr, size, allocs, frees uintptr) {
		mheap.go#L1995: 	b       *bucket
		mheap.go#L1999: func setprofilebucket(p unsafe.Pointer, b *bucket) {
		mprof.go#L61: type bucket struct {
		mprof.go#L63: 	next    *bucket
		mprof.go#L64: 	allnext *bucket
		mprof.go#L214: func newBucket(typ bucketType, nstk int) *bucket {
		mprof.go#L215: 	size := unsafe.Sizeof(bucket{}) + uintptr(nstk)*unsafe.Sizeof(uintptr(0))
		mprof.go#L225: 	b := (*bucket)(persistentalloc(size, 0, &memstats.buckhash_sys))
		mprof.go#L232: func (b *bucket) stk() []uintptr {
		mprof.go#L238: func (b *bucket) mp() *memRecord {
		mprof.go#L247: func (b *bucket) bp() *blockRecord {
		mprof.go#L256: func stkbucket(typ bucketType, size uintptr, stk []uintptr, alloc bool) *bucket {
		mprof.go#L289: 	for b := (*bucket)(bh[i].Load()); b != nil; b = b.next {
		mprof.go#L301: 	for b := (*bucket)(bh[i].Load()); b != nil; b = b.next {
		mprof.go#L323: 	b.next = (*bucket)(bh[i].Load())
		mprof.go#L324: 	b.allnext = (*bucket)(allnext.Load())
		mprof.go#L385: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L443: func mProf_Free(b *bucket, size uintptr) {
		mprof.go#L661: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L706: func record(r *MemProfileRecord, b *bucket) {
		mprof.go#L727: func iterate_memprof(fn func(*bucket, uintptr, *uintptr, uintptr, uintptr, uintptr)) {
		mprof.go#L729: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L754: 	head := (*bucket)(bbuckets.Load())
		mprof.go#L798: 	head := (*bucket)(xbuckets.Load())